home *** CD-ROM | disk | FTP | other *** search
- package regex;
-
- import java.util.BitSet;
-
- class DState {
- private BitSet nfaStateSet;
- private boolean visited;
- private DSList next;
- private boolean accepted;
-
- DState(BitSet var1, boolean var2, boolean var3, DSList var4) {
- this.nfaStateSet = var1;
- this.visited = var2;
- this.accepted = var3;
- this.next = var4;
- }
-
- public boolean visited() {
- return this.visited;
- }
-
- public void setNext(DSList var1) {
- this.next = var1;
- }
-
- public BitSet nfaStateSet() {
- return this.nfaStateSet;
- }
-
- public boolean accepted() {
- return this.accepted;
- }
-
- public DSList next() {
- return this.next;
- }
-
- public void visit() {
- this.visited = true;
- }
- }
-